home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Trusted Irix /B 4.0.4
/
Trusted-Irix B-4.0.1.iso
/
dist
/
eoe1.idb
/
usr
/
include
/
sys
/
lvtab.h.z
/
lvtab.h
Wrap
C/C++ Source or Header
|
1992-04-03
|
1KB
|
39 lines
/**************************************************************************
* *
* Copyright (C) 1989, Silicon Graphics, Inc. *
* *
* These coded instructions, statements, and computer programs contain *
* unpublished proprietary information of Silicon Graphics, Inc., and *
* are protected by Federal copyright law. They may not be disclosed *
* to third parties or copied or duplicated in any form, in whole or *
* in part, without the prior written consent of Silicon Graphics, Inc. *
* *
**************************************************************************/
#ident "$Revision: 1.4 $"
/* Structure for representing an /etc/lvtab entry. */
/* Author: Dave Higgen (daveh) @ SGI */
#define MAXVNAMELEN 80
#define MAXVDEVNAMELEN 5
#define MAXLVDEVS 40
#define MAXLVGRAN 1024
#define MAXLVKEYLEN 8
struct lvtabent {
char *devname; /* volume device name */
char *volname; /* volume name (human-readable) */
unsigned stripe; /* number of ways striped */
unsigned gran; /* granularity of striping */
unsigned ndevs; /* number of constituent devices.
* NOTE: this is basic count, NOT
* including any mirror devices*/
int mindex; /* index in pathnames where mirror
* device pathnames start if present. */
char *pathnames[1]; /* pathnames of constituent devices */
};